home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000281_andreas@mpa-garching.mpg.de_Tue Feb 8 13:55:17 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from ibm-1.mpa-garching.mpg.de by cs.umb.edu with SMTP id AA08560
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 8 Feb 1994 06:56:40 -0500
  3. Received: from localhost (andreas@localhost) by ibm-1.MPA-Garching.MPG.DE (8.6.4/8.6) id MAA66810; Tue, 8 Feb 1994 12:55:17 +0100
  4. Date: Tue, 8 Feb 1994 12:55:17 +0100
  5. From: Andreas Schott <andreas@mpa-garching.mpg.de>
  6. Message-Id: <199402081155.MAA66810@ibm-1.MPA-Garching.MPG.DE>
  7. To: tex-k@cs.umb.edu
  8. Subject: patch for toplevel Makefile.in
  9. Reply-To: andreas@mpa-garching.mpg.de (Andreas Schott)
  10.  
  11. It is only a small inconsistency. When passing down the
  12. directories to the sub-Makefiles the psmacrodir is not
  13. passed down with its value, but with its default-value.
  14. I didn't notice that earlier, because I used the default.
  15. Here the patch:
  16.  
  17. ----------------------------------------------------------------
  18. *** Makefile.in.orig    Thu Feb  3 13:48:00 1994
  19. --- Makefile.in Tue Feb  8 12:52:03 1994
  20. ***************
  21. *** 97,103 ****
  22.     texpooldir=$(texpooldir)   mfpooldir=$(mfpooldir) \
  23.     psfontdir=$(psfontdir) \
  24.     dvips_prefix=$(dvips_prefix) configdir=$(configdir) \
  25. !   headerdir=$(headerdir) psmacrodir=$(texinputdir)/dvips \
  26.     default_texsizes='$(default_texsizes)' \
  27.     $(MAKEARGS)
  28.   
  29. --- 97,103 ----
  30.     texpooldir=$(texpooldir)   mfpooldir=$(mfpooldir) \
  31.     psfontdir=$(psfontdir) \
  32.     dvips_prefix=$(dvips_prefix) configdir=$(configdir) \
  33. !   headerdir=$(headerdir) psmacrodir=$(psmacrodir) \
  34.     default_texsizes='$(default_texsizes)' \
  35.     $(MAKEARGS)
  36.   
  37. ----------------------------------------------------------------
  38.  
  39. When using srcdir the sub-Makefile are still not consistent. I'm
  40. working on that.
  41.  
  42. Andreas.